home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / winsock / ircii2-6.zip / SRC\IRCII-2.6\DOC\IRCSERV < prev    next >
Text File  |  1994-12-28  |  1KB  |  28 lines

  1. ircserv is part of this distribution.
  2. You can set whether you want to install it within the Makefile,
  3. here's a little help in deciding:
  4.  
  5. Pros:
  6. IRCII will run as two separate processes, with ircserv responding to server
  7. PINGs.  This means you can stop IRCII (with ^Z) and not get disconnected 
  8. from a server. It will buffer 4K of stuff before it blocks and PINGs
  9. will be missed.  If, for some reason, the ircserv program cannot be
  10. started, IRCII will connect directly to the server without it
  11. (transparently to the user)
  12.  
  13. Cons:
  14. It blocks beyond 4K of stuff.
  15. While being smaller than IRCII, it still takes up disk space.
  16. Since it runs as a separate process, it uses system resources while
  17. running (although not much).
  18.  
  19. Note: If you add #define NON_BLOCKING to ircserv.c, then ircserv will
  20. not block at all.  Rather, it will discard all info beyond the 4K.
  21. This means it will never miss a PING.
  22. It can, however, screw up certain things (such as NOTIFY) if some
  23. of the return information is discarded.  Use this NON_BLOCKING at
  24. your own discretion 
  25.  
  26. Operation of IRCII is identical either way.  Remember to do a 
  27. "make installserv" to compile and install ircserv if you are using it.
  28.